Analyzing Compound Statements: Truth Tables and Classification
Constructing Truth Tables for Complex Compound Statements
Truth tables are the most systematic and definitive method for determining the truth value of any compound statement for every possible assignment of truth values to its simple component statements. As statements become more complex, involving multiple simple statements and various logical connectives, the process of constructing the truth table remains the same, but the table becomes larger and requires careful, step-by-step calculation.
Steps for Construction (Detailed Recap and Extension)
Building a truth table for a complex compound statement involves breaking it down into its fundamental parts and evaluating them systematically:
- Identify All Distinct Simple Statements: List every unique simple propositional variable (usually represented by lowercase letters like $p, q, r, s, ...$) that appears anywhere within the compound statement.
- Determine the Number of Rows: The number of rows in the truth table (excluding the header row) is determined by the number of distinct simple statements, $n$. The number of rows will be $2^n$, representing every possible combination of True/False values for these $n$ variables. For $n=1$, 2 rows; for $n=2$, 4 rows; for $n=3$, 8 rows; for $n=4$, 16 rows, and so on.
- Set Up Columns for Simple Statements: Create the first $n$ columns, one for each simple statement. Populate these columns with all $2^n$ possible truth value combinations (T/F). A standard way to do this systematically is to start with the rightmost variable's column and alternate T, F, T, F, ... up to the total number of rows. For the column to its left, alternate TT, FF, TT, FF, ... For the next column, alternate TTTT, FFFF, ... and continue this pattern until the leftmost simple statement column has $2^{n-1}$ T's followed by $2^{n-1}$ F's. This ensures all combinations are covered exactly once.
- Add Columns for Sub-expressions (Following Order of Operations): Break down the complex compound statement into smaller, manageable parts. Create a separate column for each sub-expression. Proceed in a logical order, typically following the hierarchy of logical operations (or using parentheses as a guide):
- Negations ($\sim$) of simple statements.
- Expressions within the innermost parentheses.
- Expressions within outer parentheses.
- The final, complete statement.
Calculate the truth values for each sub-expression column row by row, using the truth values from previous columns and the definition (truth table) of the specific logical connective ($\sim, \land, \lor, \implies, \iff$) applied at that step.
- Calculate Truth Values for the Final Statement: The last column of the truth table will represent the entire compound statement. Calculate its truth values for each row using the values from the relevant preceding columns (which might be simple statement columns or intermediate sub-expression columns) and the definition of the final logical connective.
Example for 3 variables ($p, q, r$ - 8 rows):
$p$ | $q$ | $r$ |
---|---|---|
T | T | T |
T | T | F |
T | F | T |
T | F | F |
F | T | T |
F | T | F |
F | F | T |
F | F | F |
By following these steps systematically, you can accurately determine the truth value of any compound statement for every possible scenario of its components.
Example 1. Construct the truth table for the compound statement $(p \implies q) \land (q \implies p)$.
(Note: This compound statement is logically equivalent to $p \iff q$. Constructing its truth table is one way to demonstrate this equivalence).
Answer:
1. Simple Components: The distinct simple statements involved are $p$ and $q$.
2. Number of Rows: Since there are $n=2$ simple statements, the table will have $2^2 = 4$ rows.
3. Component Columns: Set up the first two columns for $p$ and $q$ with all 4 truth value combinations.
4. Sub-expressions: The statement contains two parenthetical sub-expressions: $(p \implies q)$ and $(q \implies p)$. We need separate columns for each.
5. Final Statement: The main connective is $\land$ (AND), combining the results of the two parenthetical expressions. The final column will be for $(p \implies q) \land (q \implies p)$.
Truth Table for $(p \implies q) \land (q \implies p)$:
$p$ | $q$ | $p \implies q$ (Col 3) |
$q \implies p$ (Col 4) |
$(p \implies q) \land (q \implies p)$ (Col 3 $\land$ Col 4) |
---|---|---|---|---|
T | T | T | T | T $\land$ T = T |
T | F | F | T | F $\land$ T = F |
F | T | T | F | T $\land$ F = F |
F | F | T | T | T $\land$ T = T |
The final column (T, F, F, T) represents the truth values of the compound statement $(p \implies q) \land (q \implies p)$. This sequence of truth values is identical to the truth table for $p \iff q$, thus demonstrating their logical equivalence.
Example 2. Construct the truth table for the compound statement $p \implies (\sim q \lor r)$.
Answer:
1. Simple Components: The distinct simple statements are $p, q$, and $r$.
2. Number of Rows: Since there are $n=3$ simple statements, the table will have $2^3 = 8$ rows.
3. Component Columns: Set up the first three columns for $p, q$, and $r$ with all 8 truth value combinations using the standard systematic pattern.
4. Sub-expressions: The statement $p \implies (\sim q \lor r)$ contains a negation ($\sim q$) and an expression within parentheses ($\sim q \lor r$). We need separate columns for $\sim q$ first, then for $(\sim q \lor r)$.
5. Final Statement: The main connective is $\implies$ (Implication), connecting $p$ and $(\sim q \lor r)$. The final column will be for $p \implies (\sim q \lor r)$. We will use the column for $p$ as the hypothesis and the column for $(\sim q \lor r)$ as the conclusion.
Truth Table for $p \implies (\sim q \lor r)$:
$p$ | $q$ | $r$ | $\sim q$ (Col 4) |
$\sim q \lor r$ (Col 4 $\lor$ Col 3) (Col 5) |
$p \implies (\sim q \lor r)$ (Col 1 $\implies$ Col 5) |
---|---|---|---|---|---|
T | T | T | F | F $\lor$ T = T | T $\implies$ T = T |
T | T | F | F | F $\lor$ F = F | T $\implies$ F = F |
T | F | T | T | T $\lor$ T = T | T $\implies$ T = T |
T | F | F | T | T $\lor$ F = T | T $\implies$ T = T |
F | T | T | F | F $\lor$ T = T | F $\implies$ T = T |
F | T | F | F | F $\lor$ F = F | F $\implies$ F = T |
F | F | T | T | T $\lor$ T = T | F $\implies$ T = T |
F | F | F | T | T $\lor$ F = T | F $\implies$ T = T |
The final column (T, F, T, T, T, T, T, T) represents the truth values of the compound statement $p \implies (\sim q \lor r)$ for all 8 possible truth combinations of $p, q$, and $r$.
Constructing truth tables is a mechanical process, but it requires careful attention to detail, particularly in setting up the initial T/F combinations and applying the correct rules for each connective at each step. For statements with more than 3 variables, the tables become very large, but the method remains the same.
Competitive Exam Pointer: Truth Table Construction for Complex Statements
This is a core skill tested in logical reasoning sections. Ensure you can:
- Correctly determine the number of rows ($2^n$).
- Systematically list all truth value combinations for the simple statements.
- Identify and create columns for necessary intermediate sub-expressions (especially those within parentheses or involving negation).
- Accurately apply the truth table rules for $\sim, \land, \lor, \implies, \iff$.
- Calculate the truth values for the final statement step-by-step.
Truth tables for statements with up to 3 variables are commonly expected. Practice breaking down complex statements and executing the calculations correctly. The final column of the truth table is often used to classify the statement (tautology, contradiction, contingency) or to check logical equivalence.
Tautologies: Definition and Identification (Truth Tables)
In logic, some compound statements are structured in such a way that they are always true, regardless of the truth or falsity of their component parts. These statements represent fundamental logical truths.
Definition of a Tautology
A tautology is a compound statement that is unconditionally true. That is, it is a statement whose truth value is always True (T), irrespective of the truth values of the simple statements that compose it.
Tautologies are considered logically valid forms. They are statements that are true purely by their logical structure, not because of the specific content of the simple propositions. Examples in natural language might include "It is raining or it is not raining."
Identification using Truth Tables
The most reliable method to determine if a compound statement is a tautology is by constructing its truth table. A compound statement is a tautology if and only if the final column in its truth table consists of only True (T) values, for every possible combination of truth values of its simple components.
If the final column contains at least one False (F) value, then the statement is not a tautology.
Example 1. Show that $p \lor (\sim p)$ is a tautology.
Answer:
1. Simple Component: $p$.
2. Rows: $2^1 = 2$.
3. Component Column: $p$.
4. Sub-expression: $\sim p$.
5. Final Statement: $p \lor (\sim p)$.
Construct the truth table following the steps:
$p$ | $\sim p$ | $p \lor (\sim p)$ |
---|---|---|
T | F | T $\lor$ F = T |
F | T | F $\lor$ T = T |
The final column for the statement $p \lor (\sim p)$ contains only T's (True values).
Therefore, the statement $p \lor (\sim p)$ is a tautology. This principle is known as the Law of Excluded Middle (A statement is either true or false).
Example 2. Is the statement $(p \land q) \implies p$ a tautology?
Answer:
1. Components: $p, q$.
2. Rows: $2^2 = 4$.
3. Component Columns: $p, q$.
4. Sub-expression: $p \land q$.
5. Final Statement: $(p \land q) \implies p$.
Construct the truth table:
$p$ | $q$ | $p \land q$ (Col 3) |
$(p \land q) \implies p$ (Col 3 $\implies$ Col 1) |
---|---|---|---|
T | T | T | T $\implies$ T = T |
T | F | F | F $\implies$ T = T |
F | T | F | F $\implies$ F = T |
F | F | F | F $\implies$ F = T |
The final column for the statement $(p \land q) \implies p$ contains only T's.
Therefore, the statement $(p \land q) \implies p$ is a tautology. This logical structure is known as Simplification (If $p$ and $q$ are true, then $p$ is true).
Example 3. Is the statement $(p \lor q) \implies p$ a tautology?
Answer:
1. Components: $p, q$.
2. Rows: $2^2 = 4$.
3. Component Columns: $p, q$.
4. Sub-expression: $p \lor q$.
5. Final Statement: $(p \lor q) \implies p$.
Construct the truth table:
$p$ | $q$ | $p \lor q$ (Col 3) |
$(p \lor q) \implies p$ (Col 3 $\implies$ Col 1) |
---|---|---|---|
T | T | T | T $\implies$ T = T |
T | F | T | T $\implies$ T = T |
F | T | T | T $\implies$ F = F |
F | F | F | F $\implies$ F = T |
The final column for the statement $(p \lor q) \implies p$ contains one F (in the third row).
Therefore, the statement $(p \lor q) \implies p$ is not a tautology. (It is not always true. For example, if it is raining or it is cold (True), it doesn't guarantee it is raining (False)).
Identifying tautologies is important because they represent logically valid inferences. Any argument form that translates into a tautology is a valid argument.
Competitive Exam Pointer: Tautologies
Tautologies are a common concept in logical reasoning questions.
- Definition: A tautology is a statement that is always True.
- Identification: The final column of its truth table must be all T's.
- Be able to construct truth tables efficiently to check for tautologies.
- Some basic tautologies are worth recognising by form (like $p \lor \sim p$, $(p \land q) \implies p$).
- Tautologies often represent logical laws or valid argument forms.
If a truth table for a statement contains even a single 'F' in the final column, it is not a tautology.
Contradictions (Fallacies): Definition and Identification (Truth Tables)
In propositional logic, we classify compound statements based on the possible truth values in their truth tables. Some statements are always true (tautologies), others are sometimes true and sometimes false (contingencies), and then there are statements that are always false. These statements are called contradictions.
Definition of a Contradiction (Fallacy)
A contradiction (also known as a fallacy or an unsatisfiable statement) is a compound statement that is false for all possible truth values of its simple component statements. Its truth value is always False (F), regardless of the circumstances described by its parts.
Contradictions represent logical impossibilities or statements that are inherently self-contradictory. For instance, claiming that a door is both open and closed at the exact same time in the same way is a contradiction in standard logic.
Identification using Truth Tables
The standard and most definitive method for identifying a contradiction is by constructing its truth table. A compound statement is a contradiction if and only if the final column in its truth table contains only False (F) values, for every single row representing a possible combination of truth values for its simple components.
If the final column of the truth table contains even one True (T) value, the statement is not a contradiction (it would be either a tautology or a contingency).
Example 1. Show that $p \land (\sim p)$ is a contradiction.
Answer:
1. Simple Component: The distinct simple statement is $p$.
2. Rows: With $n=1$ simple statement, the truth table needs $2^1 = 2$ rows.
3. Component Column: Set up the column for $p$ with its two possible truth values, T and F.
4. Sub-expression: The statement contains the negation of $p$, $\sim p$. Add a column for $\sim p$ and fill its truth values by taking the opposite of the corresponding values in the $p$ column.
5. Final Statement: The main connective is $\land$ (AND), combining $p$ and $\sim p$. Add the final column for $p \land (\sim p)$ and calculate its truth values using the columns for $p$ and $\sim p$ and the rule for conjunction ($\land$ is True only when both components are True; otherwise it's False).
Construct the truth table following these steps:
$p$ | $\sim p$ | $p \land (\sim p)$ |
---|---|---|
T | F | T $\land$ F = F |
F | T | F $\land$ T = F |
The final column for the statement $p \land (\sim p)$ contains only F's (False values).
Therefore, the statement $p \land (\sim p)$ is a contradiction. This demonstrates the fundamental logical principle known as the Law of Non-Contradiction: a statement and its negation cannot both be true simultaneously.
Example 2. Is the statement $(p \implies q) \land (p \land \sim q)$ a contradiction?
Answer:
1. Components: The distinct simple statements are $p$ and $q$.
2. Rows: Since there are $n=2$ simple statements, the table will have $2^2 = 4$ rows.
3. Component Columns: Set up the first two columns for $p$ and $q$ with all 4 combinations.
4. Sub-expressions: The statement is $(p \implies q) \land (p \land \sim q)$. We need columns for the parts inside the parentheses: $(p \implies q)$ and $(p \land \sim q)$. To calculate $(p \land \sim q)$, we first need $\sim q$. So, the intermediate columns required are: $\sim q$, $p \implies q$, and $p \land \sim q$.
5. Final Statement: The main connective is $\land$, combining $(p \implies q)$ and $(p \land \sim q)$. The final column is for $(p \implies q) \land (p \land \sim q)$.
Construct the truth table:
$p$ | $q$ | $p \implies q$ (Col 3) |
$\sim q$ (Col 4) |
$p \land \sim q$ (Col 1 $\land$ Col 4) (Col 5) |
$(p \implies q) \land (p \land \sim q)$ (Col 3 $\land$ Col 5) |
---|---|---|---|---|---|
T | T | T $\implies$ T = T | F | T $\land$ F = F | T $\land$ F = F |
T | F | T $\implies$ F = F | T | T $\land$ T = T | F $\land$ T = F |
F | T | F $\implies$ T = T | F | F $\land$ F = F | T $\land$ F = F |
F | F | F $\implies$ F = T | T | F $\land$ T = F | T $\land$ F = F |
The final column for the statement $(p \implies q) \land (p \land \sim q)$ contains only F's.
Therefore, the statement $(p \implies q) \land (p \land \sim q)$ is a contradiction. This logical structure is equivalent to $\sim (p \implies q)$. The negation of "If $p$, then $q$" is indeed "$p$ and not $q$". So, claiming "$p$ implies $q$" is true AND "$p$ and not $q$" is true simultaneously is a contradiction.
Identifying contradictions is particularly useful in formal proofs. If, during a proof, you deduce a contradiction (a statement that is always false), it means that the assumption(s) leading to that contradiction must be false. This is the core idea behind the proof technique known as **Proof by Contradiction**.
Competitive Exam Pointer: Contradictions
Contradictions are a fundamental concept in logical reasoning, often appearing in questions about logical validity and proof methods.
- Definition: A contradiction is a compound statement that is always False, regardless of the truth values of its components.
- Identification: The final column of its truth table must contain only F's. If there's even one 'T', it's not a contradiction.
- Be able to construct truth tables efficiently to check for contradictions.
- The simplest form of a contradiction is $p \land \sim p$.
- Contradictions represent logical impossibilities or self-contradictory claims.
- Proof by Contradiction: A powerful technique where you assume the opposite of what you want to prove and show that this assumption leads to a contradiction. This implies the original assumption must be false, and thus the statement you wanted to prove is true.
Recognising contradictions is vital for understanding the structure of logical arguments and proofs.
Contingencies: Definition and Identification (Truth Tables)
In contrast to tautologies (always true) and contradictions (always false), most compound statements are true in some situations and false in others. Their truth value depends on the specific truth values of the simple propositions they are built from. These statements are classified as contingencies.
Definition of a Contingency
A contingency is a compound statement that is neither a tautology nor a contradiction. Its truth value is dependent on (contingent upon) the specific truth values of the simple component statements.
This means a contingency is a statement that is true for at least one assignment of truth values to its simple components, and false for at least one assignment. It is "contingent" upon the truth or falsity of its parts.
Identification using Truth Tables
A compound statement is a contingency if and only if its final truth table column contains at least one True (T) value and at least one False (F) value.
If the final column consists entirely of T's (it's a tautology) or entirely of F's (it's a contradiction), then the statement is not a contingency.
Examples of Contingencies
Most basic compound statements formed using the logical connectives $\land, \lor, \implies, \iff$ are contingencies, as are statements formed by combining these structures, provided they don't result in a logical law (tautology) or impossibility (contradiction).
Let's look at the truth tables of the primary binary connectives:
$p$ | $q$ | $p \land q$ | $p \lor q$ | $p \implies q$ | $p \iff q$ |
---|---|---|---|---|---|
T | T | T | T | T | T |
T | F | F | T | F | F |
F | T | F | T | T | F |
F | F | F | F | T | T |
Looking at the columns for $p \land q$, $p \lor q$, $p \implies q$, and $p \iff q$, we see that each column contains a mixture of T's and F's. Therefore, these basic statements are all contingencies.
More complex examples of contingencies include:
- The statement $p \implies (\sim q \lor r)$ from Example 2 in the section on constructing truth tables had a final column of (T, F, T, T, T, T, T, T). This column contains at least one F (in the second row) and many T's. Therefore, $p \implies (\sim q \lor r)$ is a contingency.
- The statement $(p \lor q) \implies p$ from Example 3 in the Tautology section had a final column of (T, T, F, T). This column contains at least one F (in the third row) and T's. Therefore, $(p \lor q) \implies p$ is a contingency (as we already determined it's not a tautology).
Contingencies are the statements that describe specific facts or relationships that may or may not be true in a particular situation. Most meaningful assertions in science, history, or everyday life, when translated into logical form, are contingencies.
Competitive Exam Pointer: Contingencies
Contingencies are statements whose truth value is not fixed; it depends on the truth values of their components.
- Definition: A contingency is a statement that is sometimes True and sometimes False.
- Identification: The final column of its truth table contains a mix of T's and F's (specifically, at least one T and at least one F).
- If a statement is neither a tautology nor a contradiction (which you check using truth tables), it is by definition a contingency.
- Most factual statements about the world or specific mathematical properties (that are not fundamental laws or impossibilities) are contingencies.
Questions might ask you to classify a given compound statement (as a tautology, contradiction, or contingency) based on its truth table. If the final column has both T and F entries, your answer is "Contingency".
Logical Equivalence of Statements (Definition and Verification)
In mathematical logic, we often encounter different compound statements that, while structured differently, have the same logical meaning. They convey the same information in terms of truth and falsity across all possible scenarios. Such statements are said to be logically equivalent.
Definition of Logical Equivalence
Two compound statements, let's call them $S_1$ and $S_2$, are defined as logically equivalent if they have the **exact same truth value** for every possible assignment of truth values to the simple statements that compose them. This means that in every situation, if $S_1$ is true, $S_2$ must also be true, and if $S_1$ is false, $S_2$ must also be false.
- Notation: Logical equivalence between $S_1$ and $S_2$ is denoted by $S_1 \equiv S_2$ or sometimes $S_1 \Leftrightarrow S_2$.
The concept of logical equivalence is crucial because it allows us to substitute one statement for another within a logical argument or proof without altering the logical structure or the validity of the argument. This is similar to substituting equivalent algebraic expressions in an equation.
An alternative way to define logical equivalence is through the biconditional: Two statements $S_1$ and $S_2$ are logically equivalent if and only if the biconditional statement $S_1 \iff S_2$ is a tautology (always true). This is because the biconditional $S_1 \iff S_2$ is true precisely when $S_1$ and $S_2$ have the same truth value.
Verification using Truth Tables
The most fundamental and reliable method to determine if two statements $S_1$ and $S_2$ are logically equivalent is by constructing a single truth table that includes columns for both $S_1$ and $S_2$.
To verify logical equivalence using truth tables:
- Identify all the simple statements involved in both $S_1$ and $S_2$.
- Construct a truth table with columns for all simple statements and sufficient intermediate columns to calculate the truth values for both $S_1$ and $S_2$.
- Include a final column for $S_1$ and a final column for $S_2$.
- Fill in the truth values for all columns, row by row, for all possible truth assignments of the simple statements.
- Compare the truth values in the final column for $S_1$ and the final column for $S_2$.
If the truth values in the final columns for $S_1$ and $S_2$ are identical in every single row, then the statements are logically equivalent. If there is even one row where the truth values in their final columns differ, then the statements are not logically equivalent.
Example 1. Verify that the conditional statement $p \implies q$ is logically equivalent to the disjunction $\sim p \lor q$.
Answer:
We need to check if $p \implies q \equiv \sim p \lor q$.
1. Simple Components: $p, q$.
2. Rows: $2^2 = 4$.
3. Component Columns: $p, q$.
4. Sub-expressions: We need columns for $p \implies q$ and $\sim p \lor q$. To get $\sim p \lor q$, we first need $\sim p$.
5. Statements to Compare: $p \implies q$ and $\sim p \lor q$.
Construct the truth table including columns for both statements:
$p$ | $q$ | $p \implies q$ (Col 3) |
$\sim p$ (Col 4) |
$\sim p \lor q$ (Col 4 $\lor$ Col 2) (Col 5) |
---|---|---|---|---|
T | T | T $\implies$ T = T | F | F $\lor$ T = T |
T | F | T $\implies$ F = F | F | F $\lor$ F = F |
F | T | F $\implies$ T = T | T | T $\lor$ T = T |
F | F | F $\implies$ F = T | T | T $\lor$ F = T |
Comparing the final column for $p \implies q$ (Column 3) and the final column for $\sim p \lor q$ (Column 5), we see that their truth values are identical in all four rows (T, F, T, T).
Therefore, the conditional statement $p \implies q$ is logically equivalent to the disjunction $\sim p \lor q$, written as $p \implies q \equiv \sim p \lor q$. This is a very useful equivalence in logic.
Example 2. Are the statements $\sim (p \land q)$ and $(\sim p) \land (\sim q)$ logically equivalent?
(This question asks if one of De Morgan's laws for conjunction is valid).
Answer:
We need to check if $\sim (p \land q) \equiv (\sim p) \land (\sim q)$.
1. Components: $p, q$.
2. Rows: $2^2 = 4$.
3. Component Columns: $p, q$.
4. Sub-expressions: For $\sim (p \land q)$, we need $p \land q$. For $(\sim p) \land (\sim q)$, we need $\sim p$ and $\sim q$. So, intermediate columns: $p \land q$, $\sim p$, $\sim q$.
5. Statements to Compare: $\sim (p \land q)$ and $(\sim p) \land (\sim q)$. We'll calculate $\sim (p \land q)$ by negating the $p \land q$ column, and $(\sim p) \land (\sim q)$ by conjoining the $\sim p$ and $\sim q$ columns.
Construct a truth table including columns for both statements:
$p$ | $q$ | $p \land q$ (Col 3) |
$\sim (p \land q)$ (NOT Col 3) (Col 4) |
$\sim p$ (Col 5) |
$\sim q$ (Col 6) |
$(\sim p) \land (\sim q)$ (Col 5 $\land$ Col 6) (Col 7) |
---|---|---|---|---|---|---|
T | T | T $\land$ T = T | $\sim$T = F | F | F | F $\land$ F = F |
T | F | T $\land$ F = F | $\sim$F = T | F | T | F $\land$ T = F |
F | T | F $\land$ T = F | $\sim$F = T | T | F | T $\land$ F = F |
F | F | F $\land$ F = F | $\sim$F = T | T | T | T $\land$ T = T |
Comparing the final columns for $\sim (p \land q)$ (Column 4) and $(\sim p) \land (\sim q)$ (Column 7), we see that their truth values are not identical in all rows. For example, in the second row, $\sim (p \land q)$ is True while $(\sim p) \land (\sim q)$ is False. In the third row, $\sim (p \land q)$ is True while $(\sim p) \land (\sim q)$ is False.
Therefore, the statements $\sim (p \land q)$ and $(\sim p) \land (\sim q)$ are not logically equivalent.
(Note: The correct De Morgan's law for negating conjunction is $\sim (p \land q) \equiv (\sim p) \lor (\sim q)$).
Understanding and being able to verify logical equivalences is fundamental to simplifying logical expressions, proving other logical laws, and constructing formal proofs in mathematics.
Competitive Exam Pointer: Logical Equivalence
Logical equivalence is a crucial concept for competitive exams. Questions often require you to identify equivalent statements or use equivalences to simplify expressions.
- Definition: Two statements are logically equivalent ($S_1 \equiv S_2$) if they have the same truth value in all possible cases.
- Verification using Truth Tables: The most reliable method is to construct a truth table and check if the final columns for $S_1$ and $S_2$ are identical.
- If $S_1 \equiv S_2$, then the biconditional $S_1 \iff S_2$ is a tautology. This is an alternative way to prove equivalence.
- Equivalent statements can be substituted for each other in logical arguments.
- Memorise Key Equivalences: While truth tables can always verify, knowing common equivalences saves time. Some important ones include:
- Double Negation: $\sim (\sim p) \equiv p$
- De Morgan's Laws: $\sim(p \lor q) \equiv \sim p \land \sim q$, and $\sim(p \land q) \equiv \sim p \lor \sim q$.
- Conditional Equivalence: $p \implies q \equiv \sim p \lor q$.
- Contrapositive: $p \implies q \equiv \sim q \implies \sim p$.
- Biconditional Equivalence: $p \iff q \equiv (p \implies q) \land (q \implies p)$.
- Commutative Laws: $p \land q \equiv q \land p$, $p \lor q \equiv q \lor p$.
- Associative Laws: $(p \land q) \land r \equiv p \land (q \land r)$, $(p \lor q) \lor r \equiv p \lor (q \lor r)$.
- Distributive Laws: $p \land (q \lor r) \equiv (p \land q) \lor (p \land r)$, $p \lor (q \land r) \equiv (p \lor q) \land (p \lor r)$.
Practice using truth tables to verify these and other potential equivalences. Being able to identify logical equivalences is fundamental to simplifying logical expressions and evaluating arguments.